diff options
Diffstat (limited to 'src/app/groups/[groupId]/edit')
| -rw-r--r-- | src/app/groups/[groupId]/edit/page.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/edit/page.tsx b/src/app/groups/[groupId]/edit/page.tsx index f902428..1fcf225 100644 --- a/src/app/groups/[groupId]/edit/page.tsx +++ b/src/app/groups/[groupId]/edit/page.tsx @@ -1,8 +1,13 @@ import { GroupForm } from '@/components/group-form' import { getGroup, updateGroup } from '@/lib/api' import { groupFormSchema } from '@/lib/schemas' +import { Metadata } from 'next' import { notFound, redirect } from 'next/navigation' +export const metadata: Metadata = { + title: 'Settings', +} + export default async function EditGroupPage({ params: { groupId }, }: { |
